home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000123_news@columbia.edu _Wed Sep 29 18:21:50 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  1KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA14788
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 29 Sep 1999 18:21:50 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id RAA01454
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 29 Sep 1999 17:53:12 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Single character translation during "log session"
  11. Date: 29 Sep 1999 21:53:11 GMT
  12. Organization: Columbia University
  13. Message-ID: <7su1o7$1db$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <t7vI3.476$ZV1.19433@dfiatx1-snr1.gtei.net>,
  17. Rolin Meyer <rmeyer@pactide.noaa.gov> wrote:
  18. : I am currently running C-Kermit 6.0.192 for IRIX 6.X and am using "log
  19. : session" to capture remote data to file, then decode it.  I need to
  20. : translate incoming ASCII 000 (null) to ASCII 024 ($) in order to hold the
  21. : character placement and not corrupt the decoding process.  I have the "Using
  22. : C-Kermit" manual but only find character set translation.  Translating on
  23. : the file after the capture is too late, the null placement is already lost.
  24. : Any help is appreciated!
  25. Use:
  26.  
  27.   SET SESSION-LOG BINARY
  28.   LOG SESSION <filename>
  29.  
  30. This preserves the NULs.
  31.  
  32. - Frank